-
Notifications
You must be signed in to change notification settings - Fork 6.8k
refactor(aria/listbox): avoid circular references at runtime #32488
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
fd6273b to
0cf9339
Compare
|
|
||
| import {booleanAttribute, computed, Directive, ElementRef, inject, input} from '@angular/core'; | ||
| import {_IdGenerator} from '@angular/cdk/a11y'; | ||
| import {OptionPattern} from '../private'; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should we use '@angular/aria/private'; or does that have no impact?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Imports within the same npm package need to be relative after the recent dev infra changes.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should we change listbox.ts to use the relative path then?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ah yeah we should. Not sure why the build didn't break.
0cf9339 to
a35fe19
Compare
Reworks the Aria listbox to avoid a circular dependency between `Listbox` and `Option`.
a35fe19 to
826430b
Compare
Reworks the Aria listbox to avoid a circular dependency between `Listbox` and `Option`. (cherry picked from commit b7b4baa)
|
This issue has been automatically locked due to inactivity. Read more about our automatic conversation locking policy. This action has been performed automatically by a bot. |
Reworks the Aria listbox to avoid a circular dependency between
ListboxandOption.